home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win2K Network Adapter Task Offloading 1.xpl < prev    next >
Text File  |  2002-05-25  |  1KB  |  39 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Network\Network Interface"
  5. "UIPATH 2"="Hardware\NIC Cards"
  6. "NAME"="NIC Task Offloading"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Enable Network Adapter Task Offloading"
  9. "OSVERSION"="0001011"
  10. "DESCRIPTION 1"="Some network adapters have onboard processors, which allow network command processing to be offloaded from the CPU, making your computer faster. However, by default, Windows 2000/XP doesn't make use of this capability, even if your NIC driver supports it."
  11. "DESCRIPTION 2"="You can, howver enable it manually by using this plug-in. Put a tick in the box to enable task offloading, clear the box to disable."
  12. "COMMENT 1"="Taken from http://www.jsiinc.com/subg/tip3400/rh3411.htm"
  13. "COMMENT 2"="Thanks to CptSiskoX [CptSiskoX@hotmail.com] for suggesting this tip!"
  14. "VERSION"="1.05"
  15. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  16. "COPYRIGHT"="Copyight ⌐ Xteq Systems - All Rights Reserved"
  17. "CONTACTURL"="http://www.xteq.com/"
  18. "OSVERSION"="0001011"
  19.  
  20. sP="HKLM\System\CurrentControlSet\Services\Tcpip\Parameters\DisableTaskOffload"
  21.  
  22. SUB Plugin_Initialize
  23.  s=RegReadValue(sP)
  24.  if s=0 OR IsEmpty(s) then
  25.   Call SetUIElement(1,true)
  26.  end if
  27. END SUB
  28.  
  29. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  30.  s=GetUIElement(1)
  31.  if s=true then
  32.   Call RegWriteValue(sP,0,2)
  33.  else
  34.   Call RegWriteValue(sP,1,2)
  35.  end if
  36. END SUB
  37.  
  38. SUB Plugin_Terminate
  39. END SUB